home *** CD-ROM | disk | FTP | other *** search
- /*****
- *
- * StringUtil.c
- *
- *****/
-
- #include <string.h>
-
- #include "StringUtil.h"
-
- /* */
- long
- StringCountChar ( char *theString, char theChar )
- {
- long total;
- char * tempStr;
-
- total = (long)nil;
- tempStr = theString;
-
- do
- {
- tempStr = strchr ( tempStr, theChar );
-
- if ( tempStr != nil )
- {
- tempStr++;
- total++;
- }
- } while ( tempStr != nil );
-
- return total;
- } /* strcountchr */
-
-
-